home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / sml_nj / readme < prev    next >
Text File  |  1993-07-21  |  4KB  |  120 lines

  1.             Standard ML of New Jersey
  2.               Version 0.93, February 16, 1993    
  3.  
  4.      ------------------------------------------------
  5.  
  6. STANDARD ML OF NEW JERSEY COPYRIGHT NOTICE, LICENSE AND DISCLAIMER.
  7.  
  8. Copyright 1989, 1990, 1991, 1992, 1993 by AT&T Bell Laboratories
  9.  
  10. Permission to use, copy, modify, and distribute this software and its
  11. documentation for any purpose and without fee is hereby granted,
  12. provided that the above copyright notice appear in all copies and that
  13. both the copyright notice and this permission notice and warranty
  14. disclaimer appear in supporting documentation, and that the name of
  15. AT&T Bell Laboratories or any AT&T entity not be used in advertising
  16. or publicity pertaining to distribution of the software without
  17. specific, written prior permission.
  18.  
  19. AT&T disclaims all warranties with regard to this software, including
  20. all implied warranties of merchantability and fitness.  In no event
  21. shall AT&T be liable for any special, indirect or consequential
  22. damages or any damages whatsoever resulting from loss of use, data or
  23. profits, whether in an action of contract, negligence or other
  24. tortious action, arising out of or in connection with the use or
  25. performance of this software.
  26.  
  27.     ------------------------------------------------
  28.  
  29. This file describes how to obtain the latest release of Standard ML of
  30. New Jersey, version 0.93.
  31.  
  32. Send comments and bug reports to:
  33.  
  34.    sml-bugs@research.att.com
  35.  
  36. or, if only paper mail is available, to:
  37.  
  38.    David MacQueen
  39.    Room 2A-431
  40.    AT&T Bell Laboratories
  41.    Murray Hill, NJ 07974
  42.    USA
  43.    phone: 908-582-7691
  44.  
  45. The Release Notes, found in files releaseNotes.{txt,ps}, contain
  46. instructions for installing the compiler and a more detailed
  47. description of the distribution. 
  48.  
  49.  
  50. FTP distribution instructions:
  51.  
  52. The primary means of distributing the compiler is anonymous internet
  53. ftp.  For those who do not have internet access directly or
  54. indirectly, distribution by tape may be possible as a last resort.
  55. The following table gives the ftp connection information.
  56.  
  57. Host:             Net Address:      Directory:
  58. ----------------------------------------------------
  59. princeton.edu         128.112.128.1      /pub/ml
  60. research.att.com     192.20.225.2      /dist/ml
  61.  
  62. The directory pub/ml (dist/ml on research.att.com) contains this
  63. README file and the following compressed tar files:
  64.  
  65. 93.releaseNotes.ps       Postscript version of Release Notes
  66. 93.releaseNotes.txt      raw text version of Release Notes
  67. 93.src.tar.Z          source code for the compiler
  68. 93.doc.tar.Z          documentation directory (manpages, papers, help, ...)
  69. 93.tools.tar.Z        tools directory (mlyacc, twig, sourcegroups, ...)
  70. 93.contrib.tar.Z    contributed, unsupported software
  71. 93.mo.m68.tar.Z       object files for the MC68020 (Sun-3, HP, Sony, etc.)
  72. 93.mo.sparc.tar.Z     object files for the SPARC (Sun-4)
  73. 93.mo.mipsl.tar.Z     object files for the little-endian MIPS (DECstation)
  74. 93.mo.mipsb.tar.Z     object files for the big-endian MIPS (MIPS, SGI)
  75. 93.mo.rs6000.tar.Z      object files for the RS6000
  76. 93.mo.i386.tar.Z    object files for the Intel 386
  77. 93.mo.hppa.tar.Z    object files for the HPPA 
  78. 93.mac.tar.Z        files for the Macintosh under MacOS
  79. smlnj-lib.0.1.tar.Z        the Standard ML of New Jersey Library
  80. CML-0.9.8.tar.Z        Concurrent ML
  81. eXene-0.4.tar.Z        eXene - a multithreaded X Windows toolkit
  82.  
  83. You need only transfer the 93.mo.*.tar.Z files that you need for your
  84. machines (e.g. 93.mo.m68.tar.Z for Sun 3, NeXT, etc., 93.mo.sparc.tar.Z
  85. for SPARCstations).  
  86.  
  87. ***************************************************************************
  88. NOTE: Ftp should be put into binary mode before transferring the compressed
  89. tar files.
  90. ***************************************************************************
  91.  
  92. Here is a sample dialog:
  93.  
  94.    ftp
  95.    ftp> open princeton.edu
  96.    Name: anonymous
  97.    Password: <your name@host>
  98.    ftp> binary
  99.    ftp> cd pub/ml
  100.    ftp> get README
  101.    ftp> get 93.src.tar.Z
  102.    ftp> get smlnj-lib.0.1.tar.Z
  103.    ftp> get 93.tools.tar.Z
  104.    ftp> get 93.doc.tar.Z
  105.    ftp> get 93.mo.m68.tar.Z
  106.    ftp> get 93.mo.rs6000.tar.Z
  107.    ftp> close
  108.    ftp> quit
  109.  
  110. After the files are transferred they should be uncompressed 
  111. and then extracted using tar into a directory called (e.g.) mldist.
  112. For example:
  113.  
  114.    mkdir mldist
  115.    mv 93.src.tar.Z mldist
  116.    cd mldist
  117.    zcat 93.src.tar.Z | tar xof -
  118.  
  119. will install the src directory. 
  120.